8c07c9bb47e7ffd81fcccb11ce7b81e051a87c35,src/br/com/carlosrafaelgn/fplay/ActivityBrowser2.java,ActivityBrowser2,onCreateLayout,#boolean#,783
Before Change
UI.prepareControlContainerWithoutRightPadding(findViewById(R.id.panelControls), false, true);
}
UI.prepareControlContainer(panelSecondary, true, false);
if (UI.isLargeScreen)
UI.prepareViewPaddingForLargeScreen(list, 0, 0);
//this is the opposite as in updateButtons(), to force updateOverallLayout()
//to be called at least once
if (!isAtHome == (chkAll.getVisibility() == View.VISIBLE)) {
After Change
UI.prepareControlContainerWithoutRightPadding(findViewById(R.id.panelControls), false, true);
}
UI.prepareControlContainer(panelSecondary, true, false);
UI.prepareViewPaddingBasedOnScreenWidth(list, 0, 0, 0);
//this is the opposite as in updateButtons(), to force updateOverallLayout()
//to be called at least once
if (!isAtHome == (chkAll.getVisibility() == View.VISIBLE)) {